home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / a_to_d / calndar / calen.dpr next >
Encoding:
Text File  |  1996-09-15  |  198 b   |  14 lines

  1. program Calen;
  2.  
  3. uses
  4.   Forms,
  5.   Calunit in 'CALUNIT.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'Calendar';
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.